From: Aryeh Gregor Date: Tue, 20 Nov 2007 17:32:43 +0000 (+0000) Subject: Tweaks for the new rateLimited(): remove @todo i18n, allow robot follow (if it sees... X-Git-Tag: 1.31.0-rc.0~50778 X-Git-Url: http://git.cyclocoop.org/%28%5B%5E/404?a=commitdiff_plain;h=fff54fb0c2f2e5d15c13b5912dbeb8d429432890;p=lhc%2Fweb%2Fwiklou.git Tweaks for the new rateLimited(): remove @todo i18n, allow robot follow (if it sees any worthwhile links, why not?) --- diff --git a/includes/OutputPage.php b/includes/OutputPage.php index db91c148e4..fcd3a8d14f 100644 --- a/includes/OutputPage.php +++ b/includes/OutputPage.php @@ -1333,13 +1333,12 @@ class OutputPage { /** * Turn off regular page output and return an error reponse * for when rate limiting has triggered. - * @todo i18n */ public function rateLimited() { global $wgOut; $this->setPageTitle(wfMsg('actionthrottled')); - $this->setRobotPolicy( 'noindex,nofollow' ); + $this->setRobotPolicy( 'noindex,follow' ); $this->setArticleRelated( false ); $this->enableClientCache( false ); $this->mRedirect = '';